BreakLocation

data class BreakLocation(scriptId: ScriptId, lineNumber: Int, columnNumber: Int?, type: String?)

Constructors

BreakLocation
Link copied to clipboard
fun BreakLocation(scriptId: ScriptId, lineNumber: Int, columnNumber: Int? = null, type: String? = null)

Properties

columnNumber
Link copied to clipboard
val columnNumber: Int? = null
Column number in the script (0-based).
lineNumber
Link copied to clipboard
val lineNumber: Int
Line number in the script (0-based).
scriptId
Link copied to clipboard
val scriptId: ScriptId
Script identifier as reported in the Debugger.scriptParsed.
type
Link copied to clipboard
val type: String? = null

Sources

jvm source
Link copied to clipboard